home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 January / PCWorld_2003-01_cd.bin / Software / Vyzkuste / rychlokurz / httrack.exe / {app} / src / htstools.c < prev    next >
C/C++ Source or Header  |  2002-11-17  |  20KB  |  787 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: httrack.c subroutines:                                 */
  34. /*       various tools (filename analyzing ..)                  */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38. #include "htstools.h"
  39.  
  40. /* specific definitions */
  41. #include "htsbase.h"
  42. #include <stdio.h>
  43. #include <stdlib.h>
  44. #include <string.h>
  45. #include <ctype.h>
  46. /* END specific definitions */
  47.  
  48.  
  49. // forme α partir d'un lien et du contexte (origin_fil et origin_adr d'o∙ il est tirΘ) adr et fil
  50. // [adr et fil sont des buffers de 1ko]
  51. // 0 : ok
  52. // -1 : erreur
  53. // -2 : protocole non supportΘ (ftp)
  54. int ident_url_relatif(char *lien,char* origin_adr,char* origin_fil,char* adr,char* fil) {
  55.   int ok=0;
  56.   int scheme=0;
  57.  
  58.   adr[0]='\0'; fil[0]='\0';    //effacer buffers
  59.  
  60.   // lien non vide!
  61.   if (strnotempty(lien)==0) return -1;    // erreur!
  62.  
  63.   // Scheme?
  64.   {
  65.     char* a=lien;
  66.     while (isalpha((unsigned char)*a))
  67.       a++;
  68.     if (*a == ':')
  69.       scheme=1;
  70.   }
  71.  
  72.   // filtrer les parazites (mailto & cie)
  73.   // scheme+authority (//)
  74.   if (
  75.                (strfield(lien,"http://"))        // scheme+//
  76.             || (strfield(lien,"file://"))   // scheme+//
  77.             || (strncmp(lien,"//",2)==0)    // // sans scheme (-> default)
  78.        ) {
  79.     if (ident_url_absolute(lien,adr,fil)==-1) {        
  80.       ok=-1;    // erreur URL
  81.     }
  82.   }
  83.   else if (strfield(lien,"ftp://")) {
  84.     // Note: ftp:foobar.gif is not valid
  85.     if (ftp_available()) {     // ftp supportΘ
  86.       if (ident_url_absolute(lien,adr,fil)==-1) {        
  87.         ok=-1;    // erreur URL
  88.       }
  89.     } else {
  90.       ok=-2;  // non supportΘ
  91.     }
  92. #if HTS_USEOPENSSL
  93.   } else if (SSL_is_available && strfield(lien,"https://")) {
  94.     // Note: ftp:foobar.gif is not valid
  95.     if (ident_url_absolute(lien,adr,fil)==-1) {        
  96.       ok=-1;    // erreur URL
  97.     }
  98. #endif
  99.   } else if ((scheme) && (
  100.     (!strfield(lien,"http:"))
  101.     && (!strfield(lien,"https:"))
  102.     && (!strfield(lien,"ftp:"))
  103.     )) {
  104.     ok=-1;      // unknown scheme
  105.   } else {    // c'est un lien relatif
  106.     char* a;
  107.     
  108.     // On forme l'URL complΦte α partie de l'url actuelle
  109.     // et du chemin actuel si besoin est.
  110.     
  111.     // copier adresse
  112.     if (((int) strlen(origin_adr)<HTS_URLMAXSIZE) && ((int) strlen(origin_fil)<HTS_URLMAXSIZE) && ((int) strlen(lien)<HTS_URLMAXSIZE)) {
  113.  
  114.       /* patch scheme if necessary */
  115.       if (strfield(lien,"http:")) {
  116.         lien+=5;
  117.         strcpybuff(adr, jump_protocol(origin_adr));    // mΩme adresse ; protocole vide (http)
  118.       } else if (strfield(lien,"https:")) {
  119.         lien+=6;
  120.         strcpybuff(adr, "https://");   // mΩme adresse forcΘe en https
  121.         strcatbuff(adr, jump_protocol(origin_adr));
  122.       } else if (strfield(lien,"ftp:")) {
  123.         lien+=4;
  124.         strcpybuff(adr, "ftp://");   // mΩme adresse forcΘe en ftp
  125.         strcatbuff(adr, jump_protocol(origin_adr));
  126.       } else {
  127.         strcpybuff(adr,origin_adr);    // mΩme adresse ; et mΩme Θventuel protocole
  128.       }
  129.  
  130.       if (*lien!='/') {  // sinon c'est un lien absolu
  131.         a=strchr(origin_fil,'?');
  132.         if (!a) a=origin_fil+strlen(origin_fil);
  133.         if (*lien != '?')  /* filename exists */
  134.           while((*a!='/') && ( a > origin_fil) ) a--;
  135.         if (*a=='/' || *lien == '?') {    // ok on a un '/'
  136.           if ( (((int) (a - origin_fil))+1+strlen(lien)) < HTS_URLMAXSIZE) {
  137.             // copier chemin
  138.             strncpy(fil,origin_fil,((int) (a - origin_fil))+1);
  139.             *(fil + ((int) (a - origin_fil))+1)='\0';
  140.             
  141.             // copier chemin relatif
  142.             if (((int) strlen(fil)+(int) strlen(lien)) < HTS_URLMAXSIZE) {
  143.               strcatbuff(fil,lien + ((*lien=='/')?1:0) );      
  144.               // simplifier url pour les ../
  145.               fil_simplifie(fil);
  146.             } else
  147.               ok=-1;    // erreur
  148.           } else {    // erreur
  149.             ok=-1;    // erreur URL
  150.           }
  151.         } else {    // erreur
  152.           ok=-1;    // erreur URL
  153.         }
  154.       } else { // chemin absolu
  155.         // copier chemin directement
  156.         strcatbuff(fil,lien);      
  157.       }  // *lien!='/'
  158.     } else
  159.       ok=-1;
  160.     
  161.   }  // test news: etc.
  162.  
  163.   // case insensitive pour adresse
  164.   {
  165.     char *a=jump_identification(adr);
  166.     while(*a) {
  167.       if ((*a>='A') && (*a<='Z'))
  168.         *a+='a'-'A';       
  169.       a++;
  170.     }
  171.   }
  172.   
  173.   return ok;
  174. }
  175.  
  176.  
  177.  
  178.  
  179.  
  180. // crΘer dans s, α partir du chemin courant curr_fil, le lien vers link (absolu)
  181. // un ident_url_relatif a dΘja ΘtΘ fait avant, pour que link ne soit pas un chemin relatif
  182. int lienrelatif(char* s,char* link,char* curr_fil) {
  183.   char _curr[HTS_URLMAXSIZE*2];
  184.   char newcurr_fil[HTS_URLMAXSIZE*2],newlink[HTS_URLMAXSIZE*2];
  185.   char* curr;
  186.   //int n=0;
  187.   char* a;
  188.   int slash=0;
  189.   //
  190.   newcurr_fil[0]='\0'; newlink[0]='\0';
  191.   //
  192.  
  193.   // patch: Θliminer les ? (paramΦtres) sinon bug
  194.   if ( (a=strchr(curr_fil,'?')) ) {
  195.     strncatbuff(newcurr_fil,curr_fil,(int) (a - curr_fil));
  196.     curr_fil = newcurr_fil;
  197.   }
  198.   if ( (a=strchr(link,'?')) ) {
  199.     strncatbuff(newlink,link,(int) (a - link));
  200.     link = newlink;
  201.   }
  202.  
  203.   // recopier uniquement le chemin courant
  204.   curr=_curr;
  205.   strcpybuff(curr,curr_fil);
  206.   if ((a=strchr(curr,'?'))==NULL)  // couper au ? (params)
  207.     a=curr+strlen(curr)-1;         // pas de params: aller α la fin
  208.   while((*a!='/') && ( a> curr)) a--;       // chercher dernier / du chemin courant
  209.   if (*a=='/') *(a+1)='\0';                           // couper dernier /
  210.   
  211.   // "effacer" s
  212.   s[0]='\0';
  213.   
  214.   // sauter ce qui est commun aux 2 chemins
  215.   {
  216.     char *l,*c;
  217.     if (*link=='/') link++;  // sauter slash
  218.     if (*curr=='/') curr++;
  219.     l=link;
  220.     c=curr;
  221.     // couper ce qui est commun
  222. #if HTS_CASSE
  223.     while ((*link==*curr) && (*link!=0)) {link++; curr++; }
  224. #else
  225.     while ((streql(*link,*curr)) && (*link!=0)) {link++; curr++; }
  226. #endif
  227.     // mais on veut un rΘpertoirer entier!
  228.     // si on a /toto/.. et /toto2/.. on ne veut pas sauter /toto !
  229.     while(((*link!='/') || (*curr!='/')) && ( link > l)) { link--; curr--; }
  230.     //if (*link=='/') link++;
  231.     //if (*curr=='/') curr++;
  232.   }
  233.   
  234.   // calculer la profondeur du rΘpertoire courant et remonter
  235.   // LES ../ ONT ETE SIMPLIFIES
  236.   a=curr;
  237.   if (*a=='/') a++;
  238.   while(*a) if (*(a++)=='/') strcatbuff(s,"../");
  239.   //if (strlen(s)==0) strcatbuff(s,"/");
  240.  
  241.   if (slash) strcatbuff(s,"/");    // garder absolu!!
  242.   
  243.   // on est dans le rΘpertoire de dΘpart, copier
  244.   strcatbuff(s,link + ((*link=='/')?1:0) );
  245.  
  246.   /* Security check */
  247.   if (strlen(s) >= HTS_URLMAXSIZE)
  248.     return -1;
  249.  
  250.   // on a maintenant une chaine de la forme ../../test/truc.html  
  251.   return 0;
  252. }
  253.  
  254. /* Is the link absolute (http://www..) or relative (/bar/foo.html) ? */
  255. int link_has_authority(char* lien) {
  256.   char* a=lien;
  257.   if (isalpha((unsigned char)*a)) {
  258.     // Skip scheme?
  259.     while (isalpha((unsigned char)*a))
  260.       a++;
  261.     if (*a == ':')
  262.       a++;
  263.     else
  264.       return 0;
  265.   }
  266.   if (strncmp(a,"//",2) == 0)
  267.     return 1;
  268.   return 0;
  269. }
  270.  
  271. int link_has_authorization(char* lien) {
  272.   char* adr = jump_protocol(lien);
  273.   char* firstslash = strchr(adr, '/');
  274.   char* detect = strchr(adr, '@');
  275.   if (firstslash) {
  276.     if (detect) {
  277.       return (detect < firstslash);
  278.     }
  279.   } else {
  280.     return (detect != NULL);
  281.   }
  282.   return 0;
  283. }
  284.  
  285.  
  286. // conversion chemin de fichier/dossier vers 8-3 ou ISO9660
  287. void long_to_83(int mode,char* n83,char* save) {
  288.   n83[0]='\0';
  289.  
  290.   while(*save) {
  291.     char fn83[256],fnl[256];
  292.     int i=0;
  293.     fn83[0]=fnl[0]='\0';
  294.     while((save[i]) && (save[i]!='/')) { fnl[i]=save[i]; i++; }
  295.     fnl[i]='\0';
  296.     // conversion
  297.     longfile_to_83(mode,fn83,fnl);
  298.     strcatbuff(n83,fn83);
  299.  
  300.     save+=i;
  301.     if (*save=='/') { strcatbuff(n83,"/"); save++; }
  302.   }
  303. }
  304.  
  305.  
  306. // conversion nom de fichier/dossier isolΘ vers 8-3 ou ISO9660
  307. void longfile_to_83(int mode,char* n83,char* save) {
  308.   int i=0,j=0,max=0;
  309.   char nom[256];
  310.   char ext[256];
  311.   nom[0]=ext[0]='\0';
  312.   
  313.   switch(mode) {
  314.   case 1:
  315.     max=8;
  316.     break;
  317.   case 2:
  318.     max=30;
  319.     break;
  320.   default:
  321.     max=8;
  322.     break;
  323.   }
  324.  
  325.   /* No starting . */
  326.   if (save[0] == '.') {
  327.     save[0]='_';
  328.   }
  329.   /* No multiple dots */
  330.   {
  331.     char* last_dot=strrchr(save, '.');
  332.     char* dot;
  333.     while((dot=strchr(save, '.'))) {
  334.       *dot = '_';
  335.     }
  336.     if (last_dot) {
  337.       *last_dot='.';
  338.     }
  339.   }
  340.   /* 
  341.     Avoid: (ISO9660, but also suitable for 8-3)
  342.     (Thanks to jonat@cellcast.com for te hint)
  343.     /:;?\#*~
  344.     0x00-0x1f and 0x80-0xff
  345.   */
  346.   for(i=0 ; i < (int) strlen(save) ; i++) {
  347.     if (
  348.       (strchr("/:;?\\#*~", save[i]))
  349.       ||
  350.       (save[i] < 32)
  351.       ||
  352.       (save[i] >= 127)
  353.       ) {
  354.       save[i]='_';
  355.     }
  356.   }
  357.  
  358.   i=j=0;
  359.   while((i<max) && (save[j]) && (save[j]!='.')) {
  360.     if (save[j]!=' ') {
  361.       nom[i]=save[j]; 
  362.       i++; 
  363.     } 
  364.     j++; 
  365.   }  // recopier nom
  366.   nom[i]='\0';
  367.   if (save[j]) {  // il reste au moins un point
  368.     i=strlen(save)-1;
  369.     while((i>0) && (save[i]!='.') && (save[i]!='/')) i--;    // rechercher dernier .
  370.     if (save[i]=='.') {  // point!
  371.       int j=0;
  372.       i++;
  373.       while((j<3) && (save[i]) ) { if (save[i]!=' ') { ext[j]=save[i]; j++; } i++; }
  374.       ext[j]='\0';
  375.     }
  376.   }
  377.   // corriger vers 8-3
  378.   n83[0]='\0';
  379.   strncatbuff(n83,nom,8);
  380.   if (strnotempty(ext)) {
  381.     strcatbuff(n83,".");
  382.     strncatbuff(n83,ext,3);    
  383.   }
  384. }
  385.  
  386. // Θcrire backblue.gif
  387. int verif_backblue(char* base) {
  388.   int* done;
  389.   int ret=0;
  390.   NOSTATIC_RESERVE(done, int, 1);
  391.   //
  392.   if (!base) {   // init
  393.     *done=0;
  394.     return 0;
  395.   }
  396.   if ( (!*done)
  397.     || (fsize(fconcat(base,"backblue.gif")) != HTS_DATA_BACK_GIF_LEN)) {
  398.     FILE* fp = filecreate(fconcat(base,"backblue.gif"));
  399.     *done=1;
  400.     if (fp) {
  401.       if (fwrite(HTS_DATA_BACK_GIF,HTS_DATA_BACK_GIF_LEN,1,fp) != HTS_DATA_BACK_GIF_LEN)
  402.         ret=1;
  403.       fclose(fp);
  404.       usercommand(0,NULL,fconcat(base,"backblue.gif"));
  405.     } else
  406.       ret=1;
  407.     //
  408.     fp = filecreate(fconcat(base,"fade.gif"));
  409.     if (fp) {
  410.       if (fwrite(HTS_DATA_FADE_GIF,HTS_DATA_FADE_GIF_LEN,1,fp) != HTS_DATA_FADE_GIF_LEN)
  411.         ret=1;
  412.       fclose(fp);
  413.       usercommand(0,NULL,fconcat(base,"fade.gif"));
  414.     } else
  415.       ret=1;
  416.   } 
  417.   return ret;
  418. }
  419.  
  420. // flag
  421. int verif_external(int nb,int test) {
  422.   int* status;
  423.   NOSTATIC_RESERVE(status, int, 2);
  424.   if (!test)
  425.     status[nb]=0;   // reset
  426.   else if (!status[nb]) {
  427.     status[nb]=1;
  428.     return 1;
  429.   }
  430.   return 0;
  431. }
  432.  
  433.  
  434. // recherche chaεne de type truc<espaces>=
  435. // renvoi dΘcalage α effectuer ou 0 si non trouvΘ
  436. /* SECTION OPTIMISEE:
  437. #define rech_tageq(adr,s) ( \
  438.   ( (*(adr-1)=='<') || (is_space(*(adr-1))) ) ? \
  439.     ( (streql(*adr,*s)) ? \
  440.       (__rech_tageq(adr,s)) \
  441.       : 0 \
  442.     ) \
  443.     : 0\
  444.   )
  445. */
  446. /*
  447. HTS_INLINE int rech_tageq(const char* adr,const char* s) { 
  448.   if ( (*(adr-1)=='<') || (is_space(*(adr-1))) ) {   // <tag < tag etc
  449.     if (streql(*adr,*s)) {                           // tester premier octet (optimisation)
  450.       return __rech_tageq(adr,s);
  451.     }
  452.   }
  453.   return 0;
  454. }
  455. */
  456. // DeuxiΦme partie
  457. HTS_INLINE int __rech_tageq(const char* adr,const char* s) { 
  458.   int p;
  459.   p=strfield(adr,s);
  460.   if (p) {
  461.     while(is_space(adr[p])) p++;
  462.     if (adr[p]=='=') {
  463.       return p+1;
  464.     }
  465.   }
  466.   return 0;
  467. }
  468. // same, but check begining of adr wirh s (for <object src="bar.mov" .. hotspot123="foo.html">)
  469. HTS_INLINE int __rech_tageqbegdigits(const char* adr,const char* s) { 
  470.   int p;
  471.   p=strfield(adr,s);
  472.   if (p) {
  473.     while(isdigit((unsigned char)adr[p]))  p++;      // jump digits
  474.     while(is_space(adr[p])) p++;
  475.     if (adr[p]=='=') {
  476.       return p+1;
  477.     }
  478.   }
  479.   return 0;
  480. }
  481.  
  482. // tag sans =
  483. HTS_INLINE int rech_sampletag(const char* adr,const char* s) { 
  484.   int p;
  485.   if ( (*(adr-1)=='<') || (is_space(*(adr-1))) ) {   // <tag < tag etc
  486.     p=strfield(adr,s);
  487.     if (p) {
  488.       if (!isalnum((unsigned char)adr[p])) {  // <srcbis n'est pas <src
  489.         return 1;
  490.       }
  491.       return 0;
  492.     }
  493.   }
  494.   return 0;
  495. }
  496.  
  497. // teste si le tag contenu dans from est Θgal α "tag"
  498. HTS_INLINE int check_tag(char* from,const char* tag) {
  499.   char* a=from+1;
  500.   int i=0;
  501.   char s[256];
  502.   while(is_space(*a)) a++;
  503.   while((isalnum((unsigned char)*a) || (*a=='/')) && (i<250)) { s[i++]=*a; a++; }
  504.   s[i++]='\0';
  505.   return (strfield2(s,tag));  // comparer
  506. }
  507.  
  508. // teste si un fichier dΘpasse le quota
  509. int istoobig(LLint size,LLint maxhtml,LLint maxnhtml,char* type) {
  510.   int ok=1;
  511.   if (size>0) {
  512.     if (is_hypertext_mime(type)) {
  513.       if (maxhtml>0) {
  514.         if (size>maxhtml)
  515.           ok=0;
  516.       }
  517.     } else {
  518.       if (maxnhtml>0) {
  519.         if (size>maxnhtml)
  520.           ok=0;
  521.       }
  522.     }
  523.   }
  524.   return (!ok);
  525. }
  526.  
  527.  
  528. HTSEXT_API int hts_buildtopindex(char* path,char* binpath) {
  529.   FILE* fpo;
  530.   int retval=0;
  531.   char rpath[1024*2];
  532.   char *toptemplate_header=NULL,*toptemplate_body=NULL,*toptemplate_footer=NULL;
  533.   
  534.   // et templates html
  535.   toptemplate_header=readfile_or(fconcat(binpath,"templates/topindex-header.html"),HTS_INDEX_HEADER);
  536.   toptemplate_body=readfile_or(fconcat(binpath,"templates/topindex-body.html"),HTS_INDEX_BODY);
  537.   toptemplate_footer=readfile_or(fconcat(binpath,"templates/topindex-footer.html"),HTS_INDEX_FOOTER);
  538.   
  539.   if (toptemplate_header && toptemplate_body && toptemplate_footer) {
  540.     
  541.     strcpybuff(rpath,path);
  542.     if (rpath[0]) {
  543.       if (rpath[strlen(rpath)-1]=='/')
  544.         rpath[strlen(rpath)-1]='\0';
  545.     }
  546.     
  547.     fpo=fopen(fconcat(rpath,"/index.html"),"wb");
  548.     if (fpo) {
  549.       find_handle h;
  550.       verif_backblue(concat(rpath,"/"));    // gΘnΘrer gif
  551.       // Header
  552.       fprintf(fpo,toptemplate_header,
  553.         "<!-- Mirror and index made by HTTrack Website Copier/"HTTRACK_VERSION" "HTTRACK_AFF_AUTHORS" -->"
  554.         );
  555.       
  556.       /* Find valid project names */
  557.       h = hts_findfirst(rpath);
  558.       if (h) {
  559.         struct topindex_chain * chain=NULL;
  560.         struct topindex_chain * startchain=NULL;
  561.         do {
  562.           if (hts_findisdir(h)) {
  563.             char iname[HTS_URLMAXSIZE*2];
  564.             strcpybuff(iname,rpath);
  565.             strcatbuff(iname,"/");
  566.             strcatbuff(iname,hts_findgetname(h));
  567.             strcatbuff(iname,"/index.html");
  568.             if (fexist(iname)) {
  569.               struct topindex_chain * oldchain=chain;
  570.               chain=calloc(sizeof(struct topindex_chain), 1);
  571.               if (!startchain) {
  572.                 startchain=chain;
  573.               }
  574.               if (chain) {
  575.                 if (oldchain) {
  576.                   oldchain->next=chain;
  577.                 }
  578.                 chain->next=NULL;
  579.                 strcpybuff(chain->name, hts_findgetname(h));
  580.               }
  581.             }
  582.             
  583.           }
  584.         } while(hts_findnext(h));
  585.         hts_findclose(h);
  586.  
  587.         /* Build sorted index */
  588.         chain=startchain;
  589.         while(chain) {
  590.           char hname[HTS_URLMAXSIZE*2];
  591.           strcpybuff(hname,chain->name);
  592.           escape_check_url(hname);
  593.           fprintf(fpo,toptemplate_body,
  594.             hname,
  595.             chain->name
  596.             );
  597.  
  598.           chain=chain->next;
  599.         }
  600.  
  601.  
  602.         retval=1;
  603.       }
  604.       
  605.       // Footer
  606.       fprintf(fpo,toptemplate_footer,
  607.         "<!-- Mirror and index made by HTTrack Website Copier/"HTTRACK_VERSION" "HTTRACK_AFF_AUTHORS" -->"
  608.         );
  609.       
  610.       fclose(fpo);
  611.       
  612.     }
  613.     
  614.   }
  615.  
  616.   if (toptemplate_header)
  617.     freet(toptemplate_header);
  618.   if (toptemplate_body)
  619.     freet(toptemplate_body);
  620.   if (toptemplate_footer)
  621.     freet(toptemplate_footer);
  622.   
  623.   return retval;
  624. }
  625.  
  626.  
  627.  
  628.  
  629. // Portable directory find functions
  630. /*
  631. // Example:
  632. find_handle h = hts_findfirst("/tmp");
  633. if (h) {
  634.   do {
  635.     if (hts_findisfile(h))
  636.       printf("File: %s (%d octets)\n",hts_findgetname(h),hts_findgetsize(h));
  637.     else if (hts_findisdir(h))
  638.       printf("Dir: %s\n",hts_findgetname(h));
  639.   } while(hts_findnext(h));
  640.   hts_findclose(h);
  641. }
  642. */
  643. find_handle hts_findfirst(char* path) {
  644.   if (path) {
  645.     if (strnotempty(path)) {
  646.       find_handle_struct* find = (find_handle_struct*) calloc(1,sizeof(find_handle_struct));
  647.       if (find) {
  648.         memset(find, 0, sizeof(find_handle_struct));
  649. #if HTS_WIN
  650.         {
  651.           char rpath[1024*2];
  652.           strcpybuff(rpath,path);
  653.           if (rpath[0]) {
  654.             if (rpath[strlen(rpath)-1]!='\\')
  655.               strcatbuff(rpath,"\\");
  656.           }
  657.           strcatbuff(rpath,"*.*");
  658.           find->handle = FindFirstFile(rpath,&find->hdata);
  659.           if (find->handle != INVALID_HANDLE_VALUE)
  660.             return find;
  661.         }
  662. #else
  663.         strcpybuff(find->path,path);
  664.         {
  665.           if (find->path[0]) {
  666.             if (find->path[strlen(find->path)-1]!='/')
  667.               strcatbuff(find->path,"/");
  668.           }
  669.         }
  670.         find->hdir=opendir(path);
  671.         if (find->hdir != NULL) {
  672.           if (hts_findnext(find) == 1)
  673.             return find;
  674.         }
  675. #endif
  676.         free((void*)find);
  677.       }
  678.     }
  679.   }
  680.   return NULL;   
  681. }
  682. int hts_findnext(find_handle find) {
  683.   if (find) {
  684. #if HTS_WIN
  685.     if ( (FindNextFile(find->handle,&find->hdata)))
  686.       return 1;
  687. #else
  688.     memset(&(find->filestat), 0, sizeof(find->filestat));
  689.     if ((find->dirp=readdir(find->hdir)))
  690.       if (find->dirp->d_name)
  691.         if (!stat(concat(find->path,find->dirp->d_name),&find->filestat))
  692.           return 1;
  693. #endif
  694.   }
  695.   return 0;
  696. }
  697. int hts_findclose(find_handle find) {
  698.   if (find) {
  699. #if HTS_WIN
  700.     if (find->handle) {
  701.       FindClose(find->handle);
  702.       find->handle=NULL;
  703.     }
  704. #else
  705.     if (find->hdir) {
  706.       closedir (find->hdir);
  707.       find->hdir=NULL;
  708.     }
  709. #endif
  710.     free((void*)find);
  711.   }
  712.   return 0;
  713. }
  714. char* hts_findgetname(find_handle find) {
  715.   if (find) {
  716. #if HTS_WIN
  717.     return find->hdata.cFileName;
  718. #else
  719.     if (find->dirp)
  720.       return find->dirp->d_name;
  721. #endif
  722.   }
  723.   return NULL;
  724. }
  725. int hts_findgetsize(find_handle find) {
  726.   if (find) {
  727. #if HTS_WIN
  728.     return find->hdata.nFileSizeLow;
  729. #else
  730.     return find->filestat.st_size;
  731. #endif
  732.   }
  733.   return -1;
  734. }
  735. int hts_findisdir(find_handle find) {
  736.   if (find) {
  737.     if (!hts_findissystem(find)) {
  738. #if HTS_WIN
  739.       if (find->hdata.dwFileAttributes  & FILE_ATTRIBUTE_DIRECTORY)
  740.         return 1;
  741. #else
  742.       if (S_ISDIR(find->filestat.st_mode))
  743.         return 1;
  744. #endif
  745.     }
  746.   }
  747.   return 0;
  748. }
  749. int hts_findisfile(find_handle find) {
  750.   if (find) {
  751.     if (!hts_findissystem(find)) {
  752. #if HTS_WIN
  753.       if (!(find->hdata.dwFileAttributes  & FILE_ATTRIBUTE_DIRECTORY))
  754.         return 1;
  755. #else
  756.       if (S_ISREG(find->filestat.st_mode))
  757.         return 1;
  758. #endif
  759.     }
  760.   }
  761.   return 0;
  762. }
  763. int hts_findissystem(find_handle find) {
  764.   if (find) {
  765. #if HTS_WIN
  766.     if (find->hdata.dwFileAttributes  & (FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_TEMPORARY))
  767.       return 1;
  768.     else if ( (!strcmp(find->hdata.cFileName,"..")) || (!strcmp(find->hdata.cFileName,".")) )
  769.       return 1;
  770. #else
  771.     if (
  772.       (S_ISCHR(find->filestat.st_mode))
  773.       || 
  774.       (S_ISBLK(find->filestat.st_mode))
  775.       || 
  776.       (S_ISFIFO(find->filestat.st_mode))
  777.       || 
  778.       (S_ISSOCK(find->filestat.st_mode))
  779.       )
  780.       return 1;
  781.     else if ( (!strcmp(find->dirp->d_name,"..")) || (!strcmp(find->dirp->d_name,".")) )
  782.       return 1;
  783. #endif
  784.   }
  785.   return 0;
  786. }
  787.